home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat2 / chmod.0 < prev    next >
Text File  |  1996-09-01  |  5KB  |  114 lines

  1.  
  2. CHMOD(2)                   UNIX Programmer's Manual                   CHMOD(2)
  3.  
  4. NNAAMMEE
  5.      cchhmmoodd, ffcchhmmoodd - change mode of file
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssyyss//ttyyppeess..hh>>
  9.      ##iinncclluuddee <<ssyyss//ssttaatt..hh>>
  10.  
  11.      _i_n_t
  12.      cchhmmoodd(_c_o_n_s_t _c_h_a_r _*_p_a_t_h, _m_o_d_e___t _m_o_d_e)
  13.  
  14.      _i_n_t
  15.      ffcchhmmoodd(_i_n_t _f_d, _m_o_d_e___t _m_o_d_e)
  16.  
  17. DDEESSCCRRIIPPTTIIOONN
  18.      The function cchhmmoodd() sets the file permission bits of the file specified
  19.      by the pathname _p_a_t_h to _m_o_d_e. FFcchhmmoodd() sets the permission bits of the
  20.      specified file descriptor _f_d. CChhmmoodd() verifies that the process owner
  21.      (user) either owns the file specified by _p_a_t_h (or _f_d), or is the super-
  22.      user.  A mode is created from _o_r_'_d permission bit masks defined in
  23.      <_s_y_s_/_s_t_a_t_._h>:
  24.            #define S_IRWXU 0000700    /* RWX mask for owner */
  25.            #define S_IRUSR 0000400    /* R for owner */
  26.            #define S_IWUSR 0000200    /* W for owner */
  27.            #define S_IXUSR 0000100    /* X for owner */
  28.  
  29.            #define S_IRWXG 0000070    /* RWX mask for group */
  30.            #define S_IRGRP 0000040    /* R for group */
  31.            #define S_IWGRP 0000020    /* W for group */
  32.            #define S_IXGRP 0000010    /* X for group */
  33.  
  34.            #define S_IRWXO 0000007    /* RWX mask for other */
  35.            #define S_IROTH 0000004    /* R for other */
  36.            #define S_IWOTH 0000002    /* W for other */
  37.            #define S_IXOTH 0000001    /* X for other */
  38.  
  39.            #define S_ISUID 0004000    /* set user id on execution */
  40.            #define S_ISGID 0002000    /* set group id on execution */
  41.            #define S_ISVTX 0001000    /* save swapped text even after use */
  42.  
  43.      The ISVTX (the _s_t_i_c_k_y _b_i_t) indicates to the system which executable files
  44.      are shareable (the default) and the system maintains the program text of
  45.      the files in the swap area. The sticky bit may only be set by the super
  46.      user on shareable executable files.
  47.  
  48.      If mode ISVTX (the `sticky bit') is set on a directory, an unprivileged
  49.      user may not delete or rename files of other users in that directory. The
  50.      sticky bit may be set by any user on a directory which the user owns or
  51.      has appropriate permissions.  For more details of the properties of the
  52.      sticky bit, see sticky(8).
  53.  
  54.      Writing or changing the owner of a file turns off the set-user-id and
  55.      set-group-id bits unless the user is the super-user.  This makes the sys-
  56.      tem somewhat more secure by protecting set-user-id (set-group-id) files
  57.      from remaining set-user-id (set-group-id) if they are modified, at the
  58.      expense of a degree of compatibility.
  59.  
  60. RREETTUURRNN VVAALLUUEESS
  61.      Upon successful completion, a value of 0 is returned.  Otherwise, a value
  62.      of -1 is returned and _e_r_r_n_o is set to indicate the error.
  63.  
  64. EERRRROORRSS
  65.  
  66.      CChhmmoodd() will fail and the file mode will be unchanged if:
  67.  
  68.      [ENOTDIR]     A component of the path prefix is not a directory.
  69.  
  70.      [ENAMETOOLONG]
  71.                    A component of a pathname exceeded {NAME_MAX} characters,
  72.                    or an entire path name exceeded {PATH_MAX} characters.
  73.  
  74.      [ENOENT]      The named file does not exist.
  75.  
  76.      [EACCES]      Search permission is denied for a component of the path
  77.                    prefix.
  78.  
  79.      [ELOOP]       Too many symbolic links were encountered in translating the
  80.                    pathname.
  81.  
  82.      [EPERM]       The effective user ID does not match the owner of the file
  83.                    and the effective user ID is not the super-user.
  84.  
  85.      [EROFS]       The named file resides on a read-only file system.
  86.  
  87.      [EFAULT]      _P_a_t_h points outside the process's allocated address space.
  88.  
  89.      [EIO]         An I/O error occurred while reading from or writing to the
  90.                    file system.
  91.  
  92.      FFcchhmmoodd() will fail if:
  93.  
  94.      [EBADF]       The descriptor is not valid.
  95.  
  96.      [EINVAL]      _F_d refers to a socket, not to a file.
  97.  
  98.      [EROFS]       The file resides on a read-only file system.
  99.  
  100.      [EIO]         An I/O error occurred while reading from or writing to the
  101.                    file system.
  102.  
  103. SSEEEE AALLSSOO
  104.      chmod(1),  open(2),  chown(2),  stat(2),  sticky(8)
  105.  
  106. SSTTAANNDDAARRDDSS
  107.      The cchhmmoodd() function is expected to conform to IEEE Std1003.1-1988
  108.      (``POSIX'').
  109.  
  110. HHIISSTTOORRYY
  111.      The ffcchhmmoodd() function call appeared in 4.2BSD.
  112.  
  113. 4th Berkeley Distribution        June 4, 1993                                2
  114.